home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QuickTime VR Showcase
/
QuickTime VR Showcase.iso
/
3rd Parties
/
Software
/
Apple
/
AMT 2.1 New Features Demo
/
SOURCES
/
oMain_Menu_1.k
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1996-12-21
|
25.9 KB
|
1,128 lines
|
[
TEXT/MPS
]
object oMain_Menu_1 is cDefaultContainer
with
Binder is oBinder;
Label is -1;
Items is [
oKeyboard_Volume__1_44,
oClick_Sound__Up__1_45,
oClick_Sound__down__1_46,
oMM_BCKM_PIC_1_7,
oQT_1_2,
oVR_1_3,
oFlipbook_1_4,
oAudio_1_5,
oMore_Features_1_6,
oAdditional_Information_1_39,
oMM_QVWT_PIC_1_8,
oMM_QVBT_PIC_1_9,
oMM_QVBX_PIC_1_10,
oQV_ARROW_1_28,
oMM_FLP_PIC_1_13,
oMM_QTWT_PIC_1_14,
oMM_QTBT_PIC_1_15,
oMM_QTBX_PIC_1_16,
oMM_QTTH_MOV_1_17,
oQT_ARROW_1_31,
oMM_NFWT_PIC_1_18,
oMM_NFBX_PIC_1_19,
oMM_NFBT_PIC_1_20,
oMF_ARROW_1_32,
oMM_FBWT_PIC_1_21,
oMM_FBBX_PIC_1_22,
oMM_FBBT_PIC_1_23,
oFB_ARROW_1_29,
oFB_NEON_PIC_1_24,
oMM_AUBT_PIC_1_25,
oMM_AUWT_PIC_1_26,
oMM_AUBX_PIC_1_27,
oAU_ARROW_1_30,
oMM_AIBT_PIC_1_47,
oMM_AIWT_PIC_1_48,
oMM_AIBX_PIC_1_49,
oAI_ARROW_1_38,
oQT_TIMER_1_33
];
end;
object oKeyboard_Volume__1_44 is cKeyboardHandler
with
Behavior is cDefaultBehavior
has
KeyDown(theTarget, theKey)
use
KeyMatch;
do
KeyMatch := theKey = '-';
if KeyMatch then
theTarget.DoDefaultMethod := false;
oSoundVolume.StepIndexBy(-1);
end;
KeyMatch := theKey = '=';
if KeyMatch then
theTarget.DoDefaultMethod := false;
oSoundVolume.StepIndexBy(1);
end;
KeyMatch := theKey = '+';
if KeyMatch then
theTarget.DoDefaultMethod := false;
oSoundVolume.StepIndexBy(1);
end;
end;
with
Enabled is true; Shown is false;
X is 30; Y is 24; Width is 0; Height is 0;
end;
end;
object oClick_Sound__Up__1_45 is cSoundHandler
with
Supplier is oS3_2clk_WAV;
Behavior is cDefaultBehavior
has
with
Enabled is true; Shown is true;
X is 247; Y is 128; Width is 32; Height is 24;
end;
end;
object oClick_Sound__down__1_46 is cSoundHandler
with
Supplier is oS3_clk_WAV;
Behavior is cDefaultBehavior
has
with
Enabled is true; Shown is true;
X is 304; Y is 228; Width is 32; Height is 24;
end;
end;
object oMM_BCKM_PIC_1_7 is cPictureHandler
with
Duration is -1;
Supplier is oMM_BCKM_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is true;
X is 0; Y is 0; Width is 640; Height is 480;
end;
end;
object oQT_1_2 is cEmptyHandler
with
Duration is -1;
Behavior is cDefaultBehavior
has
MouseEnter(theTarget, theX, theY)
do
oMM_QTWT_PIC_1_14.Show(true);
oMM_QTBT_PIC_1_15.Show(true);
oMM_QTBX_PIC_1_16.Show(true);
oMM_QTTH_MOV_1_17.Show(true);
oMM_QTTH_MOV_1_17.Run(true);
oQT_ARROW_1_31.Show(true);
oQT_TIMER_1_33.Run(false);
oMM_QVWT_PIC_1_8.Show(false);
oMM_QVBT_PIC_1_9.Show(false);
oMM_QVBX_PIC_1_10.Show(false);
oMM_FLP_PIC_1_13.Show(false);
oQV_ARROW_1_28.Show(false);
oMM_NFWT_PIC_1_18.Show(false);
oMM_NFBX_PIC_1_19.Show(false);
oMM_NFBT_PIC_1_20.Show(false);
oMF_ARROW_1_32.Show(false);
oMM_FBWT_PIC_1_21.Show(false);
oMM_FBBX_PIC_1_22.Show(false);
oMM_FBBT_PIC_1_23.Show(false);
oFB_NEON_PIC_1_24.Show(false);
oFB_NEON_PIC_1_24.Run(false);
oFB_ARROW_1_29.Show(false);
oMM_AUBT_PIC_1_25.Show(false);
oMM_AUWT_PIC_1_26.Show(false);
oMM_AUBX_PIC_1_27.Show(false);
oAU_ARROW_1_30.Show(false);
oAI_ARROW_1_38.Show(false);
oMM_AIBT_PIC_1_47.Show(false);
oMM_AIWT_PIC_1_48.Show(false);
oMM_AIBX_PIC_1_49.Show(false);
end;
MouseLeave(theTarget, theX, theY)
do
end;
MouseUp(theTarget, theX, theY)
do
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := false;
oClick_Sound__Up__1_45.Run(true);
oAmbientSound.Stop();
oBinder.Refresh();
oBinder.Goto(oQuickTime_1_6);
end;
MouseDown(theTarget, theX, theY)
do
oClick_Sound__down__1_46.Run(true);
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := true;
oBinder.MouseSpin := oHandSpin;
if (oBinder.MouseSpin @ 1).Data=void then
oBinder.MouseSpin.EachUp(Load);
end;
if not oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Start();
end;
oBinder.Refresh();
end;
with
Enabled is true; Shown is true;
X is 282; Y is 200; Width is 158; Height is 23;
end;
end;
object oVR_1_3 is cEmptyHandler
with
Duration is -1;
Behavior is cDefaultBehavior
has
MouseEnter(theTarget, theX, theY)
do
oMM_QVWT_PIC_1_8.Show(true);
oMM_QVBT_PIC_1_9.Show(true);
oMM_QVBX_PIC_1_10.Show(true);
oMM_FLP_PIC_1_13.Show(true);
oQV_ARROW_1_28.Show(true);
oMM_NFWT_PIC_1_18.Show(false);
oMM_NFBX_PIC_1_19.Show(false);
oMM_NFBT_PIC_1_20.Show(false);
oMF_ARROW_1_32.Show(false);
oMM_QTWT_PIC_1_14.Show(false);
oMM_QTBT_PIC_1_15.Show(false);
oMM_QTBX_PIC_1_16.Show(false);
oMM_QTTH_MOV_1_17.Show(false);
oMM_QTTH_MOV_1_17.Run(false);
oQT_ARROW_1_31.Show(false);
oMM_NFWT_PIC_1_18.Show(false);
oMM_NFBX_PIC_1_19.Show(false);
oMM_NFBT_PIC_1_20.Show(false);
oMF_ARROW_1_32.Show(false);
oMM_FBWT_PIC_1_21.Show(false);
oMM_FBBX_PIC_1_22.Show(false);
oMM_FBBT_PIC_1_23.Show(false);
oFB_NEON_PIC_1_24.Show(false);
oFB_NEON_PIC_1_24.Run(false);
oFB_ARROW_1_29.Show(false);
oMM_AUBT_PIC_1_25.Show(false);
oMM_AUWT_PIC_1_26.Show(false);
oMM_AUBX_PIC_1_27.Show(false);
oAU_ARROW_1_30.Show(false);
oQT_TIMER_1_33.Run(false);
oAI_ARROW_1_38.Show(false);
oMM_AIBT_PIC_1_47.Show(false);
oMM_AIWT_PIC_1_48.Show(false);
oMM_AIBX_PIC_1_49.Show(false);
end;
MouseLeave(theTarget, theX, theY)
do
end;
MouseUp(theTarget, theX, theY)
do
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := false;
oClick_Sound__Up__1_45.Run(true);
oAmbientSound.Stop();
oBinder.Refresh();
oBinder.Goto(oQTVR_1_2);
end;
MouseDown(theTarget, theX, theY)
do
oClick_Sound__down__1_46.Run(true);
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := true;
oBinder.MouseSpin := oHandSpin;
if (oBinder.MouseSpin @ 1).Data=void then
oBinder.MouseSpin.EachUp(Load);
end;
if not oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Start();
end;
oBinder.Refresh();
end;
with
Enabled is true; Shown is true;
X is 283; Y is 112; Width is 158; Height is 23;
end;
end;
object oFlipbook_1_4 is cEmptyHandler
with
Duration is -1;
Behavior is cDefaultBehavior
has
MouseEnter(theTarget, theX, theY)
do
oMM_FBWT_PIC_1_21.Show(true);
oMM_FBBX_PIC_1_22.Show(true);
oMM_FBBT_PIC_1_23.Show(true);
oFB_NEON_PIC_1_24.Show(true);
oFB_NEON_PIC_1_24.Run(true);
oFB_ARROW_1_29.Show(true);
oMM_QVWT_PIC_1_8.Show(false);
oMM_QVBT_PIC_1_9.Show(false);
oMM_QVBX_PIC_1_10.Show(false);
oMM_FLP_PIC_1_13.Show(false);
oQV_ARROW_1_28.Show(false);
oMM_NFWT_PIC_1_18.Show(false);
oMM_NFBX_PIC_1_19.Show(false);
oMM_NFBT_PIC_1_20.Show(false);
oMF_ARROW_1_32.Show(false);
oMM_QTWT_PIC_1_14.Show(false);
oMM_QTBT_PIC_1_15.Show(false);
oMM_QTBX_PIC_1_16.Show(false);
oMM_QTTH_MOV_1_17.Show(false);
oMM_QTTH_MOV_1_17.Run(false);
oQT_ARROW_1_31.Show(false);
oMM_NFWT_PIC_1_18.Show(false);
oMM_NFBX_PIC_1_19.Show(false);
oMM_NFBT_PIC_1_20.Show(false);
oMF_ARROW_1_32.Show(false);
oMM_AUBT_PIC_1_25.Show(false);
oMM_AUWT_PIC_1_26.Show(false);
oMM_AUBX_PIC_1_27.Show(false);
oAU_ARROW_1_30.Show(false);
oQT_TIMER_1_33.Run(false);
oQT_TIMER_1_33.Enable(false);
oAI_ARROW_1_38.Show(false);
oMM_AIBT_PIC_1_47.Show(false);
oMM_AIWT_PIC_1_48.Show(false);
oMM_AIBX_PIC_1_49.Show(false);
end;
MouseLeave(theTarget, theX, theY)
do
end;
MouseUp(theTarget, theX, theY)
do
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := false;
oClick_Sound__Up__1_45.Run(true);
oAmbientSound.Stop();
oBinder.Refresh();
oBinder.Goto(oFlipbooks_1_10);
end;
MouseDown(theTarget, theX, theY)
do
oClick_Sound__down__1_46.Run(true);
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := true;
oBinder.MouseSpin := oHandSpin;
if (oBinder.MouseSpin @ 1).Data=void then
oBinder.MouseSpin.EachUp(Load);
end;
if not oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Start();
end;
oBinder.Refresh();
end;
with
Enabled is true; Shown is true;
X is 283; Y is 140; Width is 157; Height is 23;
end;
end;
object oAudio_1_5 is cEmptyHandler
with
Duration is -1;
Behavior is cDefaultBehavior
has
MouseEnter(theTarget, theX, theY)
do
oMM_AUBT_PIC_1_25.Show(true);
oMM_AUWT_PIC_1_26.Show(true);
oMM_AUBX_PIC_1_27.Show(true);
oAU_ARROW_1_30.Show(true);
oQT_TIMER_1_33.Run(false);
oMM_QVWT_PIC_1_8.Show(false);
oMM_QVBT_PIC_1_9.Show(false);
oMM_QVBX_PIC_1_10.Show(false);
oMM_FLP_PIC_1_13.Show(false);
oQV_ARROW_1_28.Show(false);
oMM_QTWT_PIC_1_14.Show(false);
oMM_QTBT_PIC_1_15.Show(false);
oMM_QTBX_PIC_1_16.Show(false);
oMM_QTTH_MOV_1_17.Show(false);
oMM_QTTH_MOV_1_17.Run(false);
oQT_ARROW_1_31.Show(false);
oMM_NFWT_PIC_1_18.Show(false);
oMM_NFBX_PIC_1_19.Show(false);
oMM_NFBT_PIC_1_20.Show(false);
oMF_ARROW_1_32.Show(false);
oMM_FBWT_PIC_1_21.Show(false);
oMM_FBBX_PIC_1_22.Show(false);
oMM_FBBT_PIC_1_23.Show(false);
oFB_NEON_PIC_1_24.Show(false);
oFB_NEON_PIC_1_24.Run(false);
oFB_ARROW_1_29.Show(false);
oAI_ARROW_1_38.Show(false);
oMM_AIBT_PIC_1_47.Show(false);
oMM_AIWT_PIC_1_48.Show(false);
oMM_AIBX_PIC_1_49.Show(false);
end;
MouseLeave(theTarget, theX, theY)
do
end;
MouseUp(theTarget, theX, theY)
do
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := false;
oClick_Sound__Up__1_45.Run(true);
oAmbientSound.Stop();
oBinder.Refresh();
oBinder.Goto(oAudio_1_8);
end;
MouseDown(theTarget, theX, theY)
do
oClick_Sound__down__1_46.Run(true);
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := true;
oBinder.MouseSpin := oHandSpin;
if (oBinder.MouseSpin @ 1).Data=void then
oBinder.MouseSpin.EachUp(Load);
end;
if not oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Start();
end;
oBinder.Refresh();
end;
with
Enabled is true; Shown is true;
X is 282; Y is 169; Width is 159; Height is 24;
end;
end;
object oMore_Features_1_6 is cEmptyHandler
with
Duration is -1;
Behavior is cDefaultBehavior
has
MouseEnter(theTarget, theX, theY)
do
oMM_NFWT_PIC_1_18.Show(true);
oMM_NFBX_PIC_1_19.Show(true);
oMM_NFBT_PIC_1_20.Show(true);
oMF_ARROW_1_32.Show(true);
oQT_TIMER_1_33.Run(false);
oMM_QVWT_PIC_1_8.Show(false);
oMM_QVBT_PIC_1_9.Show(false);
oMM_QVBX_PIC_1_10.Show(false);
oMM_FLP_PIC_1_13.Show(false);
oQV_ARROW_1_28.Show(false);
oMM_QTWT_PIC_1_14.Show(false);
oMM_QTBT_PIC_1_15.Show(false);
oMM_QTBX_PIC_1_16.Show(false);
oMM_QTTH_MOV_1_17.Show(false);
oMM_QTTH_MOV_1_17.Run(false);
oQT_ARROW_1_31.Show(false);
oMM_FBWT_PIC_1_21.Show(false);
oMM_FBBX_PIC_1_22.Show(false);
oMM_FBBT_PIC_1_23.Show(false);
oFB_NEON_PIC_1_24.Show(false);
oFB_NEON_PIC_1_24.Run(false);
oFB_ARROW_1_29.Show(false);
oMM_AUBT_PIC_1_25.Show(false);
oMM_AUWT_PIC_1_26.Show(false);
oMM_AUBX_PIC_1_27.Show(false);
oAU_ARROW_1_30.Show(false);
oAI_ARROW_1_38.Show(false);
oMM_AIBT_PIC_1_47.Show(false);
oMM_AIWT_PIC_1_48.Show(false);
oMM_AIBX_PIC_1_49.Show(false);
end;
MouseLeave(theTarget, theX, theY)
do
end;
MouseUp(theTarget, theX, theY)
do
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := false;
oClick_Sound__Up__1_45.Run(true);
oAmbientSound.Stop();
oBinder.Refresh();
oBinder.Goto(oMore_Features_1_12);
end;
MouseDown(theTarget, theX, theY)
do
oClick_Sound__down__1_46.Run(true);
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := true;
oBinder.MouseSpin := oHandSpin;
if (oBinder.MouseSpin @ 1).Data=void then
oBinder.MouseSpin.EachUp(Load);
end;
if not oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Start();
end;
oBinder.Refresh();
end;
with
Enabled is true; Shown is true;
X is 282; Y is 229; Width is 159; Height is 23;
end;
end;
object oAdditional_Information_1_39 is cEmptyHandler
with
Duration is -1;
Behavior is cDefaultBehavior
has
MouseEnter(theTarget, theX, theY)
do
oMM_NFWT_PIC_1_18.Show(false);
oMM_NFBX_PIC_1_19.Show(false);
oMM_NFBT_PIC_1_20.Show(false);
oMF_ARROW_1_32.Show(false);
oQT_TIMER_1_33.Run(false);
oMM_QVWT_PIC_1_8.Show(false);
oMM_QVBT_PIC_1_9.Show(false);
oMM_QVBX_PIC_1_10.Show(false);
oMM_FLP_PIC_1_13.Show(false);
oQV_ARROW_1_28.Show(false);
oMM_QTWT_PIC_1_14.Show(false);
oMM_QTBT_PIC_1_15.Show(false);
oMM_QTBX_PIC_1_16.Show(false);
oMM_QTTH_MOV_1_17.Show(false);
oMM_QTTH_MOV_1_17.Run(false);
oQT_ARROW_1_31.Show(false);
oMM_FBWT_PIC_1_21.Show(false);
oMM_FBBX_PIC_1_22.Show(false);
oMM_FBBT_PIC_1_23.Show(false);
oFB_NEON_PIC_1_24.Show(false);
oFB_NEON_PIC_1_24.Run(false);
oFB_ARROW_1_29.Show(false);
oMM_AUBT_PIC_1_25.Show(false);
oMM_AUWT_PIC_1_26.Show(false);
oMM_AUBX_PIC_1_27.Show(false);
oAU_ARROW_1_30.Show(false);
oAI_ARROW_1_38.Show(true);
oMM_AIBT_PIC_1_47.Show(true);
oMM_AIWT_PIC_1_48.Show(true);
oMM_AIBX_PIC_1_49.Show(true);
end;
MouseLeave(theTarget, theX, theY)
do
end;
MouseUp(theTarget, theX, theY)
do
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := false;
oClick_Sound__Up__1_45.Run(true);
oAmbientSound.Stop();
oBinder.Refresh();
oBinder.Goto(oAMT_Information_5);
end;
MouseDown(theTarget, theX, theY)
do
oClick_Sound__down__1_46.Run(true);
-- Turn off the spining cursor, if there is one
if oBinder.MouseSpin<>void then
if oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Stop();
end;
oBinder.MouseSpin := void;
end;
theTarget.Container.OverrideCursor := true;
oBinder.MouseSpin := oHandSpin;
if (oBinder.MouseSpin @ 1).Data=void then
oBinder.MouseSpin.EachUp(Load);
end;
if not oBinder.MouseSpin.IsRunning() then
oBinder.MouseSpin.Start();
end;
oBinder.Refresh();
end;
with
Enabled is true; Shown is true;
X is 282; Y is 258; Width is 157; Height is 22;
end;
end;
object oMM_QVWT_PIC_1_8 is cPictureHandler
with
Duration is -1;
Supplier is oMM_QVWT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 33; Y is 365; Width is 227; Height is 83;
end;
end;
object oMM_QVBT_PIC_1_9 is cPictureHandler
with
Duration is -1;
Supplier is oMM_QVBT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 464; Y is 139; Width is 144; Height is 102;
end;
end;
object oMM_QVBX_PIC_1_10 is cPictureHandler
with
Duration is -1;
Supplier is oMM_QVBX_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 255; Y is 296; Width is 366; Height is 172;
end;
end;
object oQV_ARROW_1_28 is cPictureHandler
with
Duration is -1;
Supplier is oMM_ARRO_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 250; Y is 118; Width is 26; Height is 17;
end;
end;
object oMM_FLP_PIC_1_13 is cFlipbookHandler
with
FirstFrame is 0;
Looping is true;
Rythm is 45;
Supplier is oMM_FLP_PIC;
Behavior is cDefaultBehavior
has
Offscreen(theTarget)
do
theTarget.Run(true);
end;
with
Enabled is false; Shown is false;
X is 417; Y is 314; Width is 181; Height is 133;
end;
end;
object oMM_QTWT_PIC_1_14 is cPictureHandler
with
Duration is -1;
Supplier is oMM_QTWT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 38; Y is 363; Width is 213; Height is 92;
end;
end;
object oMM_QTBT_PIC_1_15 is cPictureHandler
with
Duration is -1;
Supplier is oMM_QTBT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 482; Y is 144; Width is 123; Height is 87;
end;
end;
object oMM_QTBX_PIC_1_16 is cPictureHandler
with
Duration is -1;
Supplier is oMM_QTBX_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 252; Y is 295; Width is 368; Height is 174;
end;
end;
object oMM_QTTH_MOV_1_17 is cMovieHandler
with
Supplier is oMM_QTTH_MOV;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 417; Y is 314; Width is 181; Height is 133;
end;
end;
object oQT_ARROW_1_31 is cPictureHandler
with
Duration is -1;
Supplier is oMM_ARRO_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 250; Y is 204; Width is 26; Height is 17;
end;
end;
object oMM_NFWT_PIC_1_18 is cPictureHandler
with
Duration is -1;
Supplier is oMM_NFWT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 39; Y is 359; Width is 205; Height is 99;
end;
end;
object oMM_NFBX_PIC_1_19 is cPictureHandler
with
Duration is -1;
Supplier is oMM_NFBX_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 254; Y is 293; Width is 371; Height is 175;
end;
end;
object oMM_NFBT_PIC_1_20 is cPictureHandler
with
Duration is -1;
Supplier is oMM_NFBT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 445; Y is 120; Width is 187; Height is 140;
end;
end;
object oMF_ARROW_1_32 is cPictureHandler
with
Duration is -1;
Supplier is oMM_ARRO_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 250; Y is 233; Width is 26; Height is 17;
end;
end;
object oMM_FBWT_PIC_1_21 is cPictureHandler
with
Duration is -1;
Supplier is oMM_FBWT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 31; Y is 365; Width is 215; Height is 98;
end;
end;
object oMM_FBBX_PIC_1_22 is cPictureHandler
with
Duration is -1;
Supplier is oMM_FBBX_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 255; Y is 296; Width is 366; Height is 171;
end;
end;
object oMM_FBBT_PIC_1_23 is cPictureHandler
with
Duration is -1;
Supplier is oMM_FBBT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 449; Y is 160; Width is 172; Height is 58;
end;
end;
object oFB_ARROW_1_29 is cPictureHandler
with
Duration is -1;
Supplier is oMM_ARRO_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 250; Y is 145; Width is 26; Height is 17;
end;
end;
object oFB_NEON_PIC_1_24 is cFlipbookHandler
with
FirstFrame is 0;
Looping is true;
Rythm is 20;
Supplier is oFB_NEON_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 467; Y is 346; Width is 84; Height is 54;
end;
end;
object oMM_AUBT_PIC_1_25 is cPictureHandler
with
Duration is -1;
Supplier is oMM_AUBT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 458; Y is 149; Width is 164; Height is 59;
end;
end;
object oMM_AUWT_PIC_1_26 is cPictureHandler
with
Duration is -1;
Supplier is oMM_AUWT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 32; Y is 369; Width is 195; Height is 83;
end;
end;
object oMM_AUBX_PIC_1_27 is cPictureHandler
with
Duration is -1;
Supplier is oMM_AUBX_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 257; Y is 296; Width is 364; Height is 171;
end;
end;
object oAU_ARROW_1_30 is cPictureHandler
with
Duration is -1;
Supplier is oMM_ARRO_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 250; Y is 175; Width is 26; Height is 17;
end;
end;
object oMM_AIBT_PIC_1_47 is cPictureHandler
with
Duration is -1;
Supplier is oMM_AIBT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 447; Y is 130; Width is 187; Height is 121;
end;
end;
object oMM_AIWT_PIC_1_48 is cPictureHandler
with
Duration is -1;
Supplier is oMM_AIWT_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 45; Y is 366; Width is 194; Height is 86;
end;
end;
object oMM_AIBX_PIC_1_49 is cPictureHandler
with
Duration is -1;
Supplier is oMM_AIBX_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 260; Y is 298; Width is 360; Height is 172;
end;
end;
object oAI_ARROW_1_38 is cPictureHandler
with
Duration is -1;
Supplier is oMM_ARRO_PIC;
Behavior is cDefaultBehavior
has
with
Enabled is false; Shown is false;
X is 250; Y is 263; Width is 26; Height is 17;
end;
end;
object oQT_TIMER_1_33 is cTimerHandler
with
TimerShown is false;
Duration is 1098300;
Ageing is 30;
ResetOnInteraction is false;
Behavior is cDefaultBehavior
has
Offscreen(theTarget)
do
oMM_QVWT_PIC_1_8.Show(true);
oMM_QVBT_PIC_1_9.Show(true);
oMM_QVBX_PIC_1_10.Show(true);
oMM_FLP_PIC_1_13.Show(true);
oQV_ARROW_1_28.Show(true);
theTarget.Run(true);
end;
OnTime(theTarget, theTime)
do
if theTime = -1 then
theTarget.RegisterOnTime(300);
else if theTime = 300 then
oQT_ARROW_1_31.Show(false);
oMM_QVWT_PIC_1_8.Show(false);
oMM_QVBT_PIC_1_9.Show(false);
oMM_QVBX_PIC_1_10.Show(false);
oMM_FLP_PIC_1_13.Show(false);
oQV_ARROW_1_28.Show(false);
oBinder.SetTransition(oDissolve, 30);
oMM_FBWT_PIC_1_21.Show(true);
oMM_FBBX_PIC_1_22.Show(true);
oMM_FBBT_PIC_1_23.Show(true);
oFB_NEON_PIC_1_24.Show(true);
oFB_NEON_PIC_1_24.Run(true);
oFB_ARROW_1_29.Show(true);
end;
if theTime = -1 then
theTarget.RegisterOnTime(600);
else if theTime = 600 then
oMM_AUBT_PIC_1_25.Show(true);
oMM_AUWT_PIC_1_26.Show(true);
oMM_AUBX_PIC_1_27.Show(true);
oAU_ARROW_1_30.Show(true);
oBinder.SetTransition(oDissolve, 30);
oMM_FBWT_PIC_1_21.Show(false);
oMM_FBBX_PIC_1_22.Show(false);
oMM_FBBT_PIC_1_23.Show(false);
oFB_NEON_PIC_1_24.Show(false);
oFB_NEON_PIC_1_24.Run(false);
oFB_ARROW_1_29.Show(false);
end;
if theTime = -1 then
theTarget.RegisterOnTime(840);
else if theTime = 840 then
oMM_AUBT_PIC_1_25.Show(false);
oMM_AUWT_PIC_1_26.Show(false);
oMM_AUBX_PIC_1_27.Show(false);
oAU_ARROW_1_30.Show(false);
oMM_QTWT_PIC_1_14.Show(true);
oMM_QTBT_PIC_1_15.Show(true);
oMM_QTBX_PIC_1_16.Show(true);
oMM_QTTH_MOV_1_17.Show(true);
oMM_QTTH_MOV_1_17.Run(true);
oQT_ARROW_1_31.Show(true);
end;
if theTime = -1 then
theTarget.RegisterOnTime(1200);
else if theTime = 1200 then
oMM_NFWT_PIC_1_18.Show(true);
oMM_NFBX_PIC_1_19.Show(true);
oMM_NFBT_PIC_1_20.Show(true);
oMF_ARROW_1_32.Show(true);
oBinder.SetTransition(oDissolve, 30);
oMM_QTWT_PIC_1_14.Show(false);
oMM_QTBT_PIC_1_15.Show(false);
oMM_QTBX_PIC_1_16.Show(false);
oMM_QTTH_MOV_1_17.Show(false);
oMM_QTTH_MOV_1_17.Run(false);
oQT_ARROW_1_31.Show(false);
end;
if theTime = -1 then
theTarget.RegisterOnTime(1500);
else if theTime = 1500 then
oMM_NFWT_PIC_1_18.Show(false);
oMM_NFBX_PIC_1_19.Show(false);
oMM_NFBT_PIC_1_20.Show(false);
oMF_ARROW_1_32.Show(false);
oBinder.SetTransition(oDissolve, 30);
oAI_ARROW_1_38.Show(true);
oMM_AIBT_PIC_1_47.Show(true);
oMM_AIWT_PIC_1_48.Show(true);
oMM_AIBX_PIC_1_49.Show(true);
end;
if theTime = -1 then
theTarget.RegisterOnTime(1800);
else if theTime = 1800 then
theTarget.GoToBeginning();
oBinder.SetTransition(oDissolve, 30);
oAI_ARROW_1_38.Show(false);
oMM_AIBT_PIC_1_47.Show(false);
oMM_AIWT_PIC_1_48.Show(false);
oMM_AIBX_PIC_1_49.Show(false);
oMM_QVWT_PIC_1_8.Show(true);
oMM_QVBT_PIC_1_9.Show(true);
oMM_QVBX_PIC_1_10.Show(true);
oMM_FLP_PIC_1_13.Show(true);
oQV_ARROW_1_28.Show(true);
end;
end;
with
Enabled is false; Shown is false;
X is 11; Y is 185; Width is 7; Height is 5;
end;
end;